Interface UserAuthenticationInputCallback
public interface UserAuthenticationInputCallback
An implementation of a
UserAuthenticationInputCallback interface will be given by the
Orchestration library (See UserAuthenticationCallback.onUserAuthenticationRequired(UserAuthenticationCallback.UserAuthentication, UserAuthenticationInputCallback, boolean).-
Method Summary
Modifier and TypeMethodDescriptionvoidNeed to be called to inform the Orchestration library of an aborted authentication flow.voidDeprecated.voidDeprecated.voidNeed to be called to inform the Orchestration library of successful user authentication.voidNeed to be called to inform the Orchestration library of the user input.
-
Method Details
-
onUserAuthenticationInputSuccess
Deprecated.Need to be called to inform the Orchestration library of the user input. The conformity of that input can be checked by the Orchestration library. That input can be used to encrypt the secret. This method has been deprecated and will be removed in a future version. UseonUserAuthenticationSuccess(CharSequence)instead. -
onUserAuthenticationSuccess
Need to be called to inform the Orchestration library of the user input. The input can be used to encrypt the secret.- Parameters:
input- pin value provided on successful user authentication. It can be used to encrypt the secret- Throws:
AuthenticationInputException- when this method is called for any authentication type other than theUserAuthenticationCallback.UserAuthentication.PASSWORDtype.
-
onUserAuthenticationSuccess
Need to be called to inform the Orchestration library of successful user authentication.- Throws:
AuthenticationInputException- when this method is called for theUserAuthenticationCallback.UserAuthentication.PASSWORDtype.
-
onUserAuthenticationAborted
void onUserAuthenticationAborted()Need to be called to inform the Orchestration library of an aborted authentication flow. -
onUserAuthenticationInputAborted
Deprecated.Need to be called to inform the Orchestration library of an aborted authentication flow. This method has been deprecated and will be removed in a future version. UseonUserAuthenticationAborted()instead.
-